home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 2000 February
/
Macworld (2000-02).dmg
/
Shareware World
/
Utilities
/
Business
/
Ch-Ching 2.6.7r5
/
store
/
cart.lasso
next >
Wrap
Text File
|
1999-08-18
|
984b
|
24 lines
<!--This format page is used to display a listing of the items in a customer's shopping cart.
Your customer can also delete, edit and complete the transaction from this screen.
Since a customer may not have not added any items to their cart when they click on
the cart button, the 'if' tag is used to check if the current found count or
records in the database is zero. If there are not items, the 'cartempty.html' file
is displayed. Otherwise, the 'cartfull.html' page is displayed.-->
[include:'includes/name.lasso']
[include:'includes/nav.lasso']
[if:(var:'custNum' == '')]
[variable_set:'custNum'=(cookie:'custNum')]
[/if]
[inline:database=(var:'dtb'), layout='www_orderedItems', itmOrderID=(var:'custNum'), sortField='itmProductName', search]
[if:(found_count == '0') || (var:'custNum'=='')]
[inline:database=(variable:'dtb'), layout='www_categories', show]
[include:'html/cartempty.html']
[/inline]
[else]
[include:'html/cartfull.html']
[/if]
[/inline]